home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / internet / irc_i_dodatki / irc_convert / convert.amirx < prev    next >
Text File  |  1997-04-24  |  503b  |  25 lines

  1. /* Convert.AMIRX -- Temp Convertor for AmIRC
  2. \\ written by Michael Brown
  3. \\
  4. \\ Put this script in PROGDIR:rexx/ and add this as an alias with the
  5. \\ command:  "/alias convert /rx convert %p"
  6. */
  7.  
  8. PARSE ARG ARGS
  9. OPTIONS RESULTS
  10. fname = "Ram:temp"
  11. if ARGS = "" then do
  12.    "echo P="d2c(27)"b«Error» Usage: RX Convert <temp><C/F>"
  13. exit
  14. end
  15.  
  16. address command "c:convert " ARGS ">ram:temp"
  17.  
  18. call open("Input", fname, 'R')
  19.  
  20. xx = readln("Input")
  21.    "echo P="d2c(27)"b«Results» "xx
  22. call close("Input")
  23.    exit
  24. end
  25.